Git命令
由于经常忘记命令并且需要每次查找,所以我将它们总结成了一份条目清单。
经常使用的命令
git init //既存のディレクトリをgitに登録
git remote add origin [リモートリポジトリのURL] //リモートリポジトリを追加
git remote -v //現在のリモートリポジトリを確認
git add .
git commit -m "first commit"
git branch -M main
git checkout -b main
git push -u origin master //push
git push --set-upstream origin main //初期commitの時は上流ブランチがないとかでエラーがでるのでこっちを使うといいかも
git log
git reset --soft HEAD^ //commitを取り消せる
git reset --hard HEAD //
git update-ref -d HEAD //first commit だけは上記のresetで消せないのでこのコマンドを使う
Git 大文件存储
如果文件大小超过100 MB,就不能上传到Github,所以需要使用以下方法。
https://git-lfs.github.com/
在上述网址下载安装完成后,请执行以下命令。
git lfs install
git lfs track "*.psd" //追加した拡張子をlfsで管理するようになる。lfsで管理されたものは100mbを超えてもよくなる。
以下为参考:
只需要一种选项,把以下内容用中文进行改写。