Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ファイルがMacマシンにローカルに保存されているGitHubリポジトリを更新するための適切なターミナルコマンドは何ですか?
git push <remote> <branch>。例えば:
git push <remote> <branch>
git push -u origin master
リモコンをまだ設定していない場合は、を使用してリモコンを追加しgit remote add <name> <uri>ます。例えば:
git remote add <name> <uri>
git remote add origin https://github.com/username/example.git