git

git远程仓库

日期:2016-09-12 阅读:1171

dmandwp系统 - wordpress系统和DM系统区块建站>>

参考: http://www.liaoxuefeng.com/ 

生成keys:

windows下,用git-bash.exe输入:

$ ssh-keygen -t rsa -C "youremail@example.com"

密码为空。然后一路按回车。

最后问 以 .ssh还是 id_rsa保留。   --- 问你key保留的文件,可以随便输入一个名字,比如rsa,一路回车。

然后会在git-bash.exe所在的目录下生成 rsa.pub文件。

再: ssh-add rsa  --- Adding your SSH key to the ssh-agent 

https://help.github.com/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/

----

创建一个SSH keys

然后在github的后台 https://github.com/settings/ssh 创建一个SSH keys

把rsa.pub的内容复制进去就可以了。

如果已有key,把原来的删除。

--------------

添加远程库
在github后台新建一个库repository
然后github会提示以下代码:
按这样操作即可。
git remote add origin https://github.com/tvdrupal/hellogit.git

https://github.com/tvdrupal/hellogit.git 
可以换成 git@github.com/tvdrupal/hellogit.git   ---这个速度更快。


git push -u origin master  把本地库的所有内容推送到远程库上


可能会问你github帐号和密码,输入即可。

 

https://blog.csdn.net/qq_39091292/article/details/81532050

从远程clone一个库后,把.git目录删除。再换成自己库的.git(  从github clone来的)。

这样才可以 git add.

git commit -m "note..."

git push origin master  提交本地库到线上。

 

----------------

git pull origin master

git branch hello_git_branch
git checkout hello_git_branch

git pull origin hello_git_branch

git push origin hello_git_branch

https://blog.csdn.net/w15321271041/article/details/80622044

-----

从远程库克隆

先创建一个库,名为gitclone,勾上 生成readme.txt选项。

git clone git@github.com:tvdrupal/gitclone.git 

仍要在git-bash.exe下执行。

----------------

dos创建文件:  echo  node_modules/ > .gitignore

 

 

 

<<点击返回