git 命令

・开头

git init   //リポジトリ作成
git remote add origin https://github.com/ユーザー名/ファイル名.git
git add  [ ファイル名 ]
or
git add .   //ファイル全て
git commit -m "コメント"  //コミット (-aオプションは変更を自動検出してくれる)
git push -u origin master  //-uがあると次回から(origin master)がいらなくなる

・第二次以后

git add [ ファイル名 ] //追加ファイル名
or
git add . //全てのファイル
git commit -a -m "任意のコメント"  //コミット (-aオプションは変更を自動検出してくれる)
git push origin master  //masterを更新

・使用git add的示例

git add . //すべてのファイル・ディレクトリ
git add *.css //すべてのCSSファイル
git add -n //追加されるファイルを調べる
git add -u //変更されたファイルを追加する
git rm --cached //addしてしまったファイルを除外

Git commit的使用例

git commit -a //変更のあったファイルすべて
git commit --amend //直前のコミットを取り消す
git commit -v //変更点を表示してコミット

取消提交

git reset --soft HEAD~2 // 最新のコミットから2件分をワークディレクトリの内容を保持し取り消す
git reset --hard HEAD~2 // 最新のコミットから2件分のワークディレクトリの内容とコミットを取り消す
广告
将在 10 秒后关闭
bannerAds