-
1 # 阿七牛雜
-
2 # 莫丶然
使用 Git 上傳代碼大致分為以下幾個步驟:1. 創建本地倉庫。使用 `git init` 命令在你的本地項目目錄下創建一個 Git 倉庫。
2. 添加文件到本地倉庫。使用 `git add` 命令將需要上傳的文件添加到 Git 管理的暫存區。
3. 提交更改到本地倉庫。使用 `git commit` 命令將暫存區的文件提交到本地倉庫。
4. 創建遠程倉庫。在 Git 託管平台上創建一個遠程倉庫。
5. 將本地倉庫與遠程倉庫關聯。使用 `git remote add` 命令將本地倉庫與遠程倉庫關聯。
6. 推送本地代碼到遠程倉庫。使用 `git push` 命令將本地代碼推送到遠程倉庫。
一個典型的上傳代碼的完整操作:
1. 打開 Git Bash (Windows用戶可以使用 Windows終端 進行操作),進入你的本地項目目錄:`cd path/to/local/project`
2. 初始化本地倉庫:`git init`
3. 將需要上傳的文件添加到暫存區:`git add .` 或者 `git add file1 file2 file3`(其中 file1、file2、file3 指的是需要上傳的文件名)
4. 提交更改到本地倉庫:`git commit -m "提交說明"`(提交說明可以簡單地描述你的更改)
5. 創建遠程倉庫。(以Github為例) 在Github上創建一個新的Repository(Repo)
6. 將本地倉庫與遠程倉庫關聯:
`git remote add origin https://github.com/yourusername/yourrepository.git`
其中 `yourusername/yourrepository` 為你在 Github 上的 Repo 地址。
7. 推送本地代碼到遠程倉庫:
`git push -u origin master`
可以根據需要直接使用 `git push` 命令進行推送。
以上就是使用 Git 上傳代碼的基本流程。
回覆列表
1、在github有個項目2、查看該項目,右邊中間部位有類似:[email protected]:Zjmainstay/test.git的鏈接, 使用git客戶端執行命令: git clone [email protected]:Zjmainstay/test.git 可以得到一個git倉庫 注:git clone的使用需要將本地ssh的公鑰(id_rsa.pub)放到github上, ssh公鑰生成命令: ssh-keygen -t rsa -C "some comment"3、基於當前項目創建一個分支,作為新開發內容: git co -b dev-test 做了開發修改之後,使用命令: git add * git ci -m "最新修改內容的描述" git push origin dev-test:dev/dev-test 推送到遠端4、使用Pull Request請求合并內容到test分支