-
Notifications
You must be signed in to change notification settings - Fork 0
/
github.html
73 lines (39 loc) · 1.63 KB
/
github.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!-- github fundamentals -->
<!-- …or create a new repository on the command line -->
echo "# html5-css3-fundamentals" >> index.html
git init
git add .
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/aminbiography/html5-css3-fundamentals.git
git push -u origin main
<!-- …or push an existing repository from the command line -->
git remote add origin https://github.com/aminbiography/html5-css3-fundamentals.git
git branch -M main
git push -u origin main
<!-- …or import code from another repository -->
You can initialize this repository with code from a Subversion, Mercurial, or TFS project.
<!-- again -->
<!-- …or create a new repository on the command line -->
echo "# github-fundamentals-" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/aminbiography/github-fundamentals-.git
git push -u origin main
<!-- …or push an existing repository from the command line -->
git remote add origin https://github.com/aminbiography/github-fundamentals-.git
git branch -M main
git push -u origin main
<! --another way -->
<!-- …or push an existing repository from the command line -->
git init
git add .
git commit -m "Add existing project files to Git"
git remote add origin https://github.com/aminbiography/github-fundamentals-.git
git push -u -f origin master / git push -v / git pull
<!-- for git push help new window will open in browser -->
git push --help
<!-- …or import code from another repository -->
You can initialize this repository with code from a Subversion, Mercurial, or TFS project.