git的基本命令

2021-09-27 05:59:47 字數 909 閱讀 3879

可以通過下面的命令列推送乙個已存在的版本庫。

或者可以從增加 readme, 或乙個 許可證, 或乙個 .gitignore 檔案開始本專案。

由於主分支(master)會被自動保護,只有當前專案的擁有者或者您具備主程式設計師許可權才能進行初始推送。

git 全域性設定

git config --global user.name "周寧斌"

git config --global user.email "[email protected]"

建立新版本庫

git clone [email protected]:zhouningbin/jiabeiapi.git

cd jiabeiapi

touch readme.md

git add readme.md

git commit -m "add readme"

git push -u origin master

已存在的資料夾

cd existing_folder

git init

git remote add origin [email protected]:zhouningbin/jiabeiapi.git

git add .

git commit -m "initial commit"

git push -u origin master

已存在的 git 版本庫

cd existing_repo

git remote add origin [email protected]:zhouningbin/jiabeiapi.git

git push -u origin --all

git push -u origin --tags

git 基本命令

man git man git commit man git pull man git merge git config global user.name yourname git config global user.email yourname example.com cd home git m...

Git 基本命令

git config global user.name xx git config global user.email x com 1.建立專案資料夾 mkdir myproject 2.進入專案資料夾 cd myproject 3.初始化專案 git init 4.建立 readme.md tou...

Git 基本命令

說明 以下所有操作命令 均在 git bash 下執行,即命令為linux風格 檔案 以 txt 為例 其中,建立某乙個倉庫,在某一具體路徑下 執行 git init即可 幫助命令 git help 建立 respository git init 刪除 respository rm rf git 建...