要設置Git提交地址,需要先將遠程倉庫地址添加到本地倉庫中。可以通過以下命令來設置Git提交地址:
cd /path/to/your/local/repository
git remote add origin https://github.com/yourusername/yourrepository.git
這里的origin
是遠程倉庫的別名,可以自行設置。https://github.com/yourusername/yourrepository.git
是你的遠程倉庫地址,根據實際情況替換成自己的地址。
git remote -v
如果成功添加遠程倉庫,將會顯示遠程倉庫的地址。
現在,你可以向遠程倉庫提交代碼了。記得在提交代碼之前先將本地代碼推送到遠程倉庫:
git push origin master
這樣就可以將本地代碼推送到遠程倉庫中了。