📌  相关文章
📜  如何从 vscode 推送代码到 github - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:16.249000             🧑  作者: Mango

代码示例2
git init                                                           // start tracking current directory
git add -A                                                         // add all files in current directory to staging area, making them available for commit
git commit -m "commit message"                                     // commit your changes
git remote add origin https://github.com/username/repo-name.git    // add remote repository URL which contains the required details
git pull origin master                                             // always pull from remote before pushing
git push -u origin master