Skip to content

Commit f73d85a

Browse files
committed
Files Added
1 parent 41ffd5e commit f73d85a

File tree

6 files changed

+14
-0
lines changed

6 files changed

+14
-0
lines changed

create_remote_repository.pdf

98.1 KB
Binary file not shown.
29.6 KB
Binary file not shown.

push for github.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
or create a new repository on the command line
2+
echo "# Git-for-Beginners" >> README.md
3+
git init
4+
git add README.md
5+
git commit -m "first commit"
6+
git branch -M main
7+
git remote add origin https://github.com/username/Github-repo-name.git
8+
git push -u origin main
9+
…or push an existing repository from the command line
10+
git remote add origin https://github.com/username/Github-repo-name.git
11+
git branch -M main
12+
git push -u origin main
13+
…or import code from another repository
14+
You can initialize this repository with code from a Subversion, Mercurial, or TFS project.

0 commit comments

Comments
 (0)