Git使用 基本命令

2022-07-26 03:48:09 字數 1016 閱讀 7771

$ git config --global user.name "your name"   全域性 name 設定

$ git config --global user.email "[email protected]"  全域性 email 設定

$ pwd 檢視當前路徑

$ git init 初始化倉庫

$ git add readme.txt 新增乙個檔案

$ git add .  新增所有檔案

$ git commit -m "wrote a readme file" 提交改變至版本庫

$ ssh-keygen -t rsa -c "[email protected]"  建立秘鑰

$ git remote add origin [email protected]:michaelliao/learngit.git  將本地倉庫與遠端倉庫關聯

$ git push origin :推送本地庫至遠端倉庫

$ git fetch -p 刪除遠端分支後,本地同步

$ git checkout -b local-branchname origin/remote_branchname

$git remote [-v] 檢視當前配置有哪些遠端倉庫[別名實際鏈結位址]

$git commit -m "備註" 提交並進行備註

$git push -u origin a:b ,這樣可以推到遠端 b 分支上,同時設定為當前分支 a 的上游分支

$git branch --set-upstream-to=origin/master master 關聯本地分支與遠端分支

初始化乙個**庫,並提交到遠端

git init

git add .

git commit -m "first commit"

git remote rm origin

git remote add origin [email protected]:baokang/practice.git

git push -u origin master

Git基本命令使用

顯示所有本地分支 git branch顯示所有遠端分支 git branch r新建乙個分支 git branch branch name 切換到指定的分支 git checkout b branch name 合併指定分支到當前分支 git merge branch 刪除指定分支 git bran...

Git 基本命令使用

1 git init 1 git remote add 遠端主機名 遠端主機位址url 例如 git remote add origin 1 git add 2 git commit m reason for this commit 3 git push 遠端主機名 本地分支名 遠端分支名 例如 g...

git基本命令使用

點選前往 git init 將當前資料夾初始化為乙個倉庫 git clone 轉殖乙個遠端倉庫作為本地倉庫 git add 新增全部檔案到暫存區 git add 新增某個檔案到暫存區 git commit m 提交的相關資訊 建立分支 git branch 檢視當前有哪些分支 git branch ...