ワークスペースに Java プロジェクトがあり、これを 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 --global user.email "ravitest@gmail.com"
git config --global user.name "ravikirantest"
の結果
git config -l
:sai@ravikiran:~/workspace/Sai/src$ git config -l user.email=ravitest@gmail.com 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 で自分のファイルを表示できません。
更新部分
sai@ravikiran:~/workspace/Sai/src$ git push origin master
Username for 'https://github.com': ravikirantest
Password for 'https://ravikirantest@github.com':
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.
sai@ravikiran:~/workspace/Sai/src$