私は現在gitを学んでおり、完全に迷っています:
私は次のことをしたい:
- git を使用して、リモート ブランチをフェッチおよび編集 (プッシュ) したいと考えています。
これどうやってするの?
私は次のことを考えていました:
git branch -a
then
git checkout remote/branch_name
git add .
git commit -m "..."
git push (which would push to the remote)
そうですか>