メモ-bitベース
2692 ワード
git config --global user.name "xxx" //
git config --global user.email "[email protected]" //
git config --global core.editor vim //
git config --list //
git config user.name //
git help
git init //
git add *.c
git add LICENSE //add , 、 、 。
git commit -m 'initial project version'
git clone https://github.com/libgit2/libgit2 // https
git clone https://github.com/libgit2/libgit2 mylibgit
git status // -s
git diff //
git diff --cached //
git commit //
git commit -m "xxxx"//
git commit -a // , git add
git rm filename.md // git ,
git mv file_from file_to
git log
git commit --amend
git reset HEAD ... //
git checkout -- filename
すべての変更は消えますを慎重に使用してください. git remote -v //
git remote add
git fetch
git push [remote-name] [branch-name]
git tag //
git tag -l 'v1.8.5*'// v1.8.5
git tag -a -m //
git tag
tag push origin --tags
git config --global alias.ci commit
その後git ciを使用してコミットできます
to be done...