gitlab的git命令行操作

MINGW64 /f/BI/bi/二期/脚本 (master)
$ mkdir ~/.ssh
mkdir: cannot create directory ‘/c/Users/Administrator/.ssh’: File exi                                                                               sts

 MINGW64 /f/BI/bi/二期/脚本 (master)
$ cd ~/.ssh

 MINGW64 ~/.ssh
$ git config --global user.name "XX"

 MINGW64 ~/.ssh
$ git config --global user.email "[email protected]"

 MINGW64 ~/.ssh
$ ssh-keygen -t rsa -C ""
Generating public/private rsa key pair.
Enter file in which to save the key (/c/Users/Administrator/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /c/Users/Administrator/.ssh/id_rsa.
Your public key has been saved in /c/Users/Administrator/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:VMyQbkP6olb8oXXvfwsu/L35P5NTnw7SEhh1OEIvuHM [email protected]
The key‘s randomart image is:
+---[RSA 2048]----+
|        o*....   |
|        +o=o.    |
|       =.o...    |
|      ..= +      |
|     . =SE .     |
|      + * . o   .|
|     o = o.+ +  =|
|    o . .  o= +*+|
|   .       |
+----[SHA256]-----+

 MINGW64 ~/.ssh







 MINGW64 /f/BI/bi/二期/脚本 (master)
$ git config --global user.name "XX"

 MINGW64 /f/BI/bi/二期/脚本 (master)
$ git config --global user.email ""

 MINGW64 /f/BI/bi/二期/脚本 (master)
$ git init
Reinitialized existing Git repository in F:/BI/bi/二期/脚本/.git/

 MINGW64 /f/BI/bi/二期/脚本 (master)
$ git remote add origin ssh://:65508/data-center/hopsonone/                                                                         dp-data-analysis/easylife_data_analysis.git
fatal: remote origin already exists.

 MINGW64 /f/BI/bi/二期/脚本 (master)
$ git remote add o ssh://:65508/data-center/hopsonone/dp-da                                                                         ta-analysis/easylife_data_analysis.git

 MINGW64 /f/BI/bi/二期/脚本 (master)
$ git add dws_broker_reward.sh dws_should_solid_knot_fc_ac.sh dws_total_amou                                                                         nt.sh

 MINGW64 /f/BI/bi/二期/脚本 (master)
$ git commit -m "remote-shell"
[master (root-commit) 3730f82] remote-shell
warning: LF will be replaced by CRLF in dws_broker_reward.sh.
The file will have its original line endings in your working directory.
 3 files changed, 1170 insertions(+)
 create mode 100644 dws_broker_reward.sh
 create mode 100644 dws_should_solid_knot_fc_ac.sh
 create mode 100644 dws_total_amount.sh

 MINGW64 /f/BI/bi/二期/脚本 (master)
$ git push -u o master
The authenticity of host ‘[git.hopson.io]:65508 ([47.94.203.190]:65508)‘ can                                                                         ‘t be established.
ECDSA key fingerprint is SHA256:CRCRBb4FwTO0TNfqlBA6wBvRW+OKU4pc2mULCqbxMmk.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added ‘[git.hopson.io]:65508,[47.94.203.190]:65508‘ (EC                                                                         DSA) to the list of known hosts.
Counting objects: 5, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (5/5), done.
Writing objects: 100% (5/5), 7.26 KiB | 0 bytes/s, done.
Total 5 (delta 0), reused 0 (delta 0)
To ssh://:65508/data-center/hopsonone/dp-data-analysis/easy                                                                         life_data_analysis.git
 * [new branch]      master -> master
Branch master set up to track remote branch master from o.

相关推荐