git-learn
此内容尚不支持你的语言。
quick setup — if you’ve done this kind of thing before
Section titled “quick setup — if you’ve done this kind of thing before”
…or create a new repository on the command line
Section titled “…or create a new repository on the command line”echo "# git-learn" >> README.mdgit initgit add README.mdgit commit -m "first commit"git branch -M maingit remote add origin git@github.com:Nahida-aa/git-learn.gitgit push -u origin main…or push an existing repository from the command line
Section titled “…or push an existing repository from the command line”git remote add origin git@github.com:Nahida-aa/git-learn.gitgit branch -M maingit push -u origin main