Horje
how install hub Code Example
how install hub
$ hub --version
git version 2.25.0
hub version 2.14.1
how install hub
git config --global user.email "email@example.com"
git config --global user.name "Your Name"
how install hub
$ cd hub
$ git checkout -b topic
Switched to a new branch 'topic'
$ echo “Hey” >test2.txt
$ git add .
$ git commit -m ‘Adding test 2’
[master cbb6fde5805a] Adding test 2
 1 file changed, 1 insertion(+)
 create mode 100644 test2.txt
how install hub
$ cd Documents
$ mkdir Test; cd Test/
$ git init
Initialized empty Git repository in /Users/SudeshnaSur/Test/.git/
how install hub
$ git commit -m 'Adding a test file'
[master (root-commit) 07035c94e038] Adding a test file
 1 file changed, 1 insertion(+)
 create mode 100644 test.txt
$ git status
On branch master
nothing to commit, working tree clean
how install hub
$ git remote -v
origin  git@github.com:SudeshnaSur/Test.git (fetch)
origin  git@github.com:SudeshnaSur/Test.git (push)
how install hub
$ brew install hub
how install hub
$ hub fork –remote-name origin
how install hub
$ git status
On branch master

No commits yet

Untracked files:
        test.txt

nothing added to commit but untracked files present
$ git add .
how install hub
$ hub create
Updating origin
https://github.com/SudeshnaSur/Test




Shell

Related
how to check cpu temperature ubuntu 20.04 Code Example how to check cpu temperature ubuntu 20.04 Code Example
print apt list Code Example print apt list Code Example
install pandas profiling on vscode Code Example install pandas profiling on vscode Code Example
sudo systemctl enable journalbeat sudo systemctl start journalbeat Code Example sudo systemctl enable journalbeat sudo systemctl start journalbeat Code Example
tor new identity command line Code Example tor new identity command line Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11