GitHub的使用方法

2021-08-21 16:09:57 字數 610 閱讀 1182

1.用三個命令視窗(在windows系統下):

a.gitbush:可以執行類似於在linux下的操作,用途是用來上傳個人**到github平台上的

b.gitcmd:就是進入自己建立的目錄下

c.gitgui:就是一些關於git的介紹資訊

1.gitcmd是執行專案的

2.gitbash是執行git命令的

二.**上傳:

git clone ssh(在gitcmd就可以實現)

2.從本地專案上傳到碼雲上是(在gitbush視窗使用):

a.git status

b.git add .

c.git commit -m 'project initialized'

d.git  push

3.增加了分支後處理辦法:

1.git status

2.git branch

3.git add .(別忘了點【.】)

4.git commit -m 『fix problem』

5.git push

6.git checkout detail-header

7.git merge master

8.git push

Github 使用方法

一種方法是,在github建立乙個repository,然後git clone到本地,再把本地的檔案放到這個資料夾裡,再git add,git commit,git push到github 還有一種方法,在github建立同名 repository,但是注意,不要包括readme檔案。然後在本地資料...

github使用方法

1.建立專案後,提交到master上 1 git init 2 git add 3 git commit m note note是提交說明 4 git remote add origin http.git http.git實現與倉庫專案的關聯 5 git push u origin master 2...

Github使用方法

00x0 配置資訊。git config global user.name username 設定使用者名稱 git config global user.email email mail.com 設定郵箱 git config global color.ui auto git init 完成git...