忘了的git备忘录
遗忘的git备忘录
这是为自己使用的。
克隆git库
git clone https:xxx.xxx
使用SSH进行克隆时
git clone [ssh configの接続名]:xxx/xxx
#branch 指定
git clone -b [ブランチ名][リポジトリのアドレス]
链接
# remoteリポジトリの確認
git remote -v
# remoteリポジトリ削除
git remote rm origin http://xxxxxx.xxx/xxxx
#remoteリポジトリの追加
git remote add origin http://xxxxxx.xxx/xxxx
支系
# branchの作成
git branch [branch名]
# branchの移動
git checkout [branch名]
# branchの削除
git branch -d [branch名]
添加提交推送
# ステージング
git add .
# commit
git commit -m "コメント"
# push
git push