-
Notifications
You must be signed in to change notification settings - Fork 3
/
git_commands.json
64 lines (55 loc) · 1.66 KB
/
git_commands.json
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
{
"command" : "git init",
"comment" : "Beady little eyes",
"tag" : "init,start git,open git"
},
{
"command" : "git status",
"comment" : "Information about changed/deleted files",
"tag" : "status,condition,changes,modify"
},
{
"command" : "git config username.name Jhon",
"comment" : "Config git user for the current git",
"tag" : "git, config, user,name"
},
{
"command" : "git config username.email [email protected]",
"comment" : "Config git email for the current git",
"tag" : "git, config, user,email"
},
{
"command" : "git config --global username.name Jhon",
"comment" : "Config git email for the current git",
"tag" : "git, config, user,esetup,config, globally, user,name"
},
{
"command" : "git config --global username.email [email protected]",
"comment" : "Config git email for the current git globally in a machine",
"tag" : "setup,config, globally, user,email"
},
{
"command" : "git remote add origin https://github.com/arif98741/gitcom",
"comment" : "Config remote connection for uploading files and data to the repository(such as github, gitlab, bitbucket, sourceforge)",
"tag" : "setup,origin,remote,server,repo"
},
{
"command" : "git -v",
"comment" : "Current installed git version",
"tag" : "git,version,show"
},
{
"command" : "git add file.txt",
"comment" : "Add specific file for commit",
"tag" : "add, fixed, specific, custom file"
},
{
"command" : "git add .",
"comment" : "Add all changed file for commit",
"tag" : "add, all, every file, changed"
},
{
"command" : "git commit -m commit_message",
"comment" : "Commit Changes with messages and information",
"tag" : "commit, change, -m"
},