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