GitHub/Lab初心者です。
現在GitLabを利用し始めたのですが,Remote repositoryの更新がうまく行きません。
試した事:
① 最初はMasterへのadd/commit/pushで問題無く,LocalからRemote repositoryへの更新ができておりました。
②先日Branchを作成し,そこでProgram等の更新をし,add/commit/pushをしたところ,remote repositoryの内容が更新されなくなってしまいました。なお,Branchの方はcloneはしておりません(必要でしょうか?)
③ Branchからmasterに戻した後に,add/commit/pushをしたのですが,やはりremote repositoryに変化はなく,merge requestなども見当たりません。
何が原因でしょうか?
ご指摘頂けますと幸いです。
試したコード(コマンド in Git bash):
----①----
Branch: Master
- git add .
- git commit -a -m "Comments"
- git push origin master
----②----
- git branch test
- git checkout test
Branch: Master
3) git add .
4) git commit -a -m "Comments"
5) git push origin test
----③----
- git checkout master
- git add .
- git commit -a -m "Comments"
- git push origin master
回答1件
あなたの回答
tips
プレビュー