我是 GIT 新手(从零开始)。我已经阅读了关于 git local repository 和 github 的最基本教程。
以下是目前执行的代码:
username:是我的用户名 mailId:是邮件id
git config --global user.name "Username"
git config --global user.mail "mailId"
git init
git add file.txt
git status
git commit -m "Added first file"
git log
git diff file.txt
git diff --color file.txt
git log -p
git log -p --color
cat .git/config
ssh-keygen -t rsa -C "mailId"
cat .ssh/id_rsa.pub
ssh -T git@github.com
git push -u origin master
#
git 远程添加源https://github.com/Username/myrepo.git
公钥
ssh-rsa * ** * ** * ** * ** * ** * ** * ** * ** * ** * ** * ** * ** * ** * ** * ** * * * * ** * ** * ** * ** * ** * ** * ** * ** * ** * ** * ** * ** *** * ** * ** * xyz@mail.com
到目前为止,我所做的是在测试的基础上。现在我想要所有的实时基础。
问题/疑问::
我有 myrepo 作为我的本地存储库,并在此处复制所有文件/代码以将其发送到名为 myrepo 的我的 github 存储库(与本地存储库相同)。
1)我想要一个不同的本地git目录(我的代码工作空间是在这里定义的,所以我不需要一次又一次地复制粘贴);我不知道该怎么做,用 .git 配置文件调和。
2)从新的本地git目录中,我想将所有文件/文件夹推送到github。
我该如何进一步进行?