我對github很新,想知道如何將本地項目推送或設置到遠程環境?例如,我在C:\ project中有一個項目,如何將它發送給github remote?使用git控制檯時我一直失敗。任何步驟?如何將本地git項目設置爲遠程?
0
A
回答
1
下面的網站會給出一個暗示要做什麼。我認爲這會有所幫助。 https://help.github.com/articles/pushing-to-a-remote/
1.首先重定向到您要設置的git項目。
的git的init
git的添加*
混帳推
3
步驟使用:
create a local repository, if not yet,
commit local repository locally,
git add .
git commit -am "init"
create a repository on github with same name as local repo:
left it empty, no README or .gitignore file,
config remote:
git remote add origin https://github.com/[user]/[project_name].git
set remote url:
git config remote.origin.url https://[user]@github.com/[user]/[project_name]
initial push to github:
git push -u origin master
set tracking info - master:
git branch --set-upstream-to origin/master
tip:
before do this, the remote repo should at least contain 1 commit,
you can do this by push once, or create a file remotely (e.g. README.md).
check the project on github, to see is it ok.
如果你有多個本地分支,你想跟蹤多個分支github上,不只是主人。
steps - push another branch to github:
* make sure both local/remote have the same branch already,
if not yet, you can push a local branch to remote first,
format:
git push [remote] [branch]
* in local
switch to specific branch,
then set its upstream via:
git branch --set-upstream-to=<remote>/<remote_branch> <local_branch>
e.g.
git branch --set-upstream-to=origin/develop develop
*
學習的地方混帳
- git-scm.com/documentation
人混帳XXX
xxx是git的內部命令名,例如添加
1
如果你當前的工作文件夾沒有被Github的初始化,然後使用以下命令:
git init
git remote add origin <the http git address of your remote repository>
git add .
git commit -m "<some comments for this commit>"
git push origin master
如果您的工作副本已初始化,並且您想要將遠程目標存儲庫更改爲另一個。然後,我相信下面的命令將幫助:
git remote set-url origin <the address of your new repository>
git add .
git commit -m "<some comments>"
git push origin <the branch you want to push to>
希望這個答案是非常有用的!
相關問題
- 1. 將git項目從本地移動到遠程,如何?
- 2. 將遠程合併到git項目的本地子目錄中
- 3. 如何爲多個項目設置git?
- 4. GIT新手,並嘗試設置本地/遠程開發設置
- 5. 如何設置鏡像遠程git存儲庫的本地目錄?
- 6. 如何git拉遠程和刪除.git(重新)初始化本地項目?
- 7. 將本地Git權限重置爲遠程的權限
- 8. 將本地Git分支重置爲遠程
- 9. 如何設置本地ede項目
- 10. 重置本地git回購到遠程?
- 11. Git:將遠程分支拉到本地
- 12. 將遠程git克隆到本地
- 13. 本地化項目設置
- 14. 從本地項目文件夾推送到遠程git倉庫
- 15. 設置git遠程來源
- 16. Git如何在本地嵌套遠程目錄?
- 17. 本地Netbeans設置與遠程git存儲庫
- 18. 如何使用LibGDX項目設置git
- 19. 如何設置我的本地Git存儲庫以使用遠程服務器?
- 20. 如何在本地將一個git遠程連接到另一個遠程
- 21. Git - 如何將遠程分支合併到遠程主設備
- 22. 如何爲0.3.0 mapsforge設置本地項目庫
- 23. Xcode 4 git:'移動'本地git項目到我們的遠程服務器
- 24. git其他人如何使用我的本地作爲遠程
- 25. 本地客戶端服務器Xcode項目的Git設置
- 26. 如何爲git存儲庫設置默認的遠程原點?
- 27. Git-tfs重置爲遠程
- 28. PHP - 本地VS遠程設置
- 29. GIT :(Kohana)項目設置
- 30. git項目的Eclipse設置
'我在使用git console時失敗了'如果你用控制檯解釋你正在嘗試的內容,它可能會有所幫助 – gturri