git 常用的操作

2021-09-19 16:48:33 字數 473 閱讀 3056

向遠端倉庫提交了下檔案,發現沒必要提交target目錄,可以做了如下操作:

git rm -r --cached target

git commit -m "delete target/"

git push origin master

開啟github看一下,target目錄是不是沒有提交了!,如果想把target目錄以後都不用提交,可以作如下

vi  .gitignore  

#寫入:

target/ 注意路徑一定要寫正確

#可以在.gitignore中寫入我們不想提交的檔案或目錄

#儲存退出

git add .gitignore

git commit -m "write .gitignore"

git push origin master

刪除為add的檔案

git checkout 檔案

常用的Git操作

git initgit clone url 例 git clone 新增乙個新的 remote 遠端倉庫 git remote add remote name url 例 git remote add origin origin 相當於該遠端倉庫的別名 列出所有 remote 的別名 git rem...

Git的常用操作

使用git有段時間了,現在終於有了一些基本概念。把常用的做一些總結,以供開發使用。參考 git clone local 從remote 拷貝乙個倉庫到localgit branch 在local建立乙個分支branchname git branch 列出local所有分支 git checkout ...

Git常用的操作

1 git使用的常規操作 git pull 編輯 git add git commit git push 用git add把檔案新增進去,實際上就是把檔案修改新增到暫存區 用git commit提交更改,實際上就是把暫存區的所有內容提交到當前分支 用git push 提交到遠端的倉庫。其實就是工作區...