Git用法向上編
1217 ワード
Git Commit形式
git commit -m "type: descriptions"
typeには以下の種類があります.
git commit -m "feat: generate converted mov instructions"
追加gitnoreファイル
プロジェクトのルートディレクトリに追加します.gitnoreファイル、次はいくつかです.gitignoreファイルで無視される一致規則:
*.a # .a
!lib.a # lib.a
/TODO # TODO , subdir/TODO
build/ # build/
doc/*.txt # doc/notes.txt doc/server/arch.txt
次にdemoを示します.
.ieda
.xml
out
gen
.gitignoreは、trackされていないファイルしか無視できません.バージョン管理に組み込まれているファイルがある場合は、ローカルキャッシュを削除してからコミットします.
git rm -r –-cached . #
git add .
git commit -m “refactor: update .gitignore”
Git Cloneが間違っている:RPC failed;curl 18 transfer closed with outstanding read data remaining
ソリューション:
# git
git config --global http.postBuffer 1024288000
git clone https://gitee.com/towords/my_project.git --depth 1