git bash常用的操作命令

2021-09-23 22:10:51 字數 667 閱讀 2196

#在當前目錄新建乙個git**庫

git init

新增刪除檔案

#新增指定檔案到暫存區

git add [file1] [file2]

#刪除工作區檔案,並將這次刪除放入暫存區

git rm [file1] [file2]

#改名檔案,並將這次改名放入暫存區

git mv [file-origin] [file-renamed]

**提交

#提交暫存區到倉庫

git commit -m "message"

#直接從工作區提交到倉庫,前提該檔案在倉庫中有歷史版本

git commit -a -m "message"

檢視資訊

#顯示變更資訊

git status

#顯示當前分支的歷史版本

git log

git log --oneline

常用git bash命令

git init git remote add origin 你的專案位址 剛才在碼雲建立的專案的位址 git pull origin master git pull origin master allow unrelated histories git rm filename git branch...

Git bash常用命令

最近專案中使用到了git,所以記錄一下git中常用的命令。git使用的客戶端有git bash 還有烏龜tortoisegit git status檢視本地修改與伺服器的差異。git add 將這些差異檔案新增,這樣就可以提交了。git commit m 這裡是注釋 提交更改到伺服器。git che...

Git bash常用命令

checkout方式 xiaofeng 126 data projectname e htdocs projectname 本地增加 git add 本地提交方式 git commit m 這裡是注釋而且一定要寫 上傳本地到遠端倉庫 git push origin master 合併遠端倉庫到本地 ...