「GitLab」の版間の差分
ナビゲーションに移動
検索に移動
Sufee Admin (トーク | 投稿記録) |
Sufee Admin (トーク | 投稿記録) |
||
9行目: | 9行目: | ||
git push -uf kapibarasan main | git push -uf kapibarasan main | ||
</syntaxhighlight> | |||
* リポジトリ更新<syntaxhighlight lang="shell"> | |||
git add . | |||
git commit -m "second commit" | |||
git remote -v | |||
git push -uf kapibarasan main | |||
</syntaxhighlight> | </syntaxhighlight> |
2022年12月10日 (土) 03:40時点における版
概要
PGの管理ツール 自身のサーバに構築できるのがミソ。
その前にGitの使い方
- リポジトリ作成後push(アップロード)するときの手順
cd existing_repo git remote add kapibarasan https://gitlab.sufee.net/[[ユーザー名]]/[プロジェクト名].git git branch -M main git push -uf kapibarasan main
- リポジトリ更新
git add . git commit -m "second commit" git remote -v git push -uf kapibarasan main