我在我的工作區中有一個Java項目,我試圖將其推送到GitHub。如何查看GitHub上的存儲庫
我是第一次使用Git用戶,並沒有創建GitHub帳戶。
這些是我遵循的步驟。
- 從源代碼文件夾
最初,我確實:
git --bare init
再次我跑
git init
命令:git init
創建遠程倉庫:
git remote add origin ssh://ravi.kiran.com/home/sai/workspace/Sai
然後,我把我的本地文件版本控制之下。
git add .
git commit -a -m 'initialize repo'
然後我把我的全局配置:
結果的git config -l
git config --global user.email "[email protected]"
git config --global user.name "ravikirantest"
:
[email protected]:~/workspace/Sai/src$ git config -l [email protected] user.name=ravikirantest core.repositoryformatversion=0 core.filemode=true core.bare=false core.logallrefupdates=true remote.origin.url=ssh://ravi.kiran.com remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
請告訴我如何在GitHub中查看我的存儲庫!
在此之後,我甚至創建了一個GitHub帳戶,其中包含上述指定的 電子郵件和用戶名,但我無法在github.com上查看我的文件。
更新部分
[email protected]:~/workspace/Sai/src$ git push origin master
Username for 'https://github.com': ravikirantest
Password for 'https://[email protected]':
To https://github.com/ravikirantest/Chandrayan.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'https://github.com/ravikirantest/Chandrayan.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Merge the remote changes (e.g. 'git pull')
hint: before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
[email protected]:~/workspace/Sai/src$
我知道你正在試圖幫助我,我正在關注你的帖子,並試圖做同樣的事情,但我感到一個問題。 – Pawan
如果這是您第一次推到新的GitHub倉庫,我想知道您的初始嘗試是否會讓您感到困惑?即也許從一個乾淨的石板重新開始? – harunahi