1)touch readme.md檔案是關於工程**的介紹,類似與使用說明書
2)git init 初始化乙個本地的 git倉庫,生成隱藏的.git目錄(隱藏的.git目錄可使用ls -af命令可以檢視到)
3)git add readme.md 把readme.md檔案新增到倉庫中
4)git commit -m "first commit" 執行提交說明,在gitz中這個屬於強制性的
5)git remote add origin 新增本地倉庫origin和指定遠端倉庫位址
6)git push origin master 推送本地倉庫到遠端指定的master分支上
提交新**:
先add,然後commit,然後push
從一台機器上提交**的前提是本機有git需要的sshkey,在本機生成sshkey的步驟如下:
# checks to see if there is a directory named ".ssh" in your user directory
cd ~/.ssh
# creates a new ssh key, using the provided email as a label
ssh-keygen -t rsa -c "[email protected]"
然後按照提示一步步走就行了
sudo apt-get install xclip
然後進去新生成的"*.pub"檔案,複製新的sshkey,進入account settings,click "add ssh key",然後把剛才複製出的sshkey儲存進去
在以上命令使用過程中,如果遇到問題,可以在git help裡用錯誤提示搜解決方案
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 建...