github的簡單使用

2021-07-24 15:15:52 字數 607 閱讀 6947

1安裝git後

$ git config --global user.name "your name"

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

2.生成本地的ssh金鑰:

開啟shell(windows下開啟git bash)

$ ssh-keygen -t rsa -c

"[email protected]"

2.將id_rsa.pub裡的內容複製拷貝到:

在本地資料夾:

git clone [email protected]:wzcwmhp/upload.git

2.上傳檔案:

需要保證本地有乙個和伺服器一樣的倉庫,

或者建立乙個倉庫,clone到本地,將需要上傳的檔案拷貝到本地的資料夾中,

git clone [email protected]:wzcwmhp/upload.git

輸入一下命令:

git add -a

git commit -m 'hahahhha'

git push

github的簡單使用

1.檢視本地所有分支 git branch2.檢視所有分支 包含遠端分支 git brach a3.選擇分支 4.刪除本地分支 git branch d branch name5.刪除遠端分支 遠端分支的本地索引 git branch r d origin branch name6.刪除遠端分支內容...

GitHub的簡單使用

配置使用者個人的使用者名稱和電子郵件位址 git config global user.name john doe git config global user.email johndoe example.com 在需要提交的專案下執行 git init將專案裡的指定或所有檔案納入版本控制 git ...

GitHub 的簡單使用

一 git 版本控制器二 客戶端三 分支操作 branches 分支 master 指向最新版本的指標 idea 指向最新分支的指標 當前的分支不能刪除 unpublish 刪除已發布的遠端分支 delete 刪除所有的 遠端與本地 分支 master 預設分支,不能刪除 通過 setting設定改...