Results: 1580
Notes
  • Newest first
  • Oldest first
  • Newest first(All)
  • Oldest first(All)
.gitconfig
which is located at
C:\Users\Admin\.gitconfig
contains user configurations
[user]
	email = tandilashvilivaleri@gmail.com
	name = Valeri Tandilash
[merge]
	tool = meld
[mergetool "meld"]
	path = C:\\Program Files (x86)\\Meld\\Meld.exe
by Valeri Tandilashvili
4 years ago
0
Git
Git/Github Tutorial
1
Using git console
git config --global diff.tool "meld"
git config --global difftool.prompt false
git config --global difftool.meld.path "C:\Program Files (x86)\Meld\Meld.exe"
Using
.gitconfig
configuration file located at
C:\Users\Username\.gitconfig
[diff]
	tool = meld
[difftool]
	prompt = false
[difftool "meld"]
	path = C:\\Program Files (x86)\\Meld\\Meld.exe
by Valeri Tandilashvili
4 years ago
0
Git
Git/Github Tutorial
1
View differences in
vimdiff
even if the default difftool is another tool
git difftool -t vimdiff
by Valeri Tandilashvili
4 years ago
0
Git
Git/Github Tutorial
1
Using git console
git config --global merge.tool "meld"
git config --global mergetool.prompt false
git config --global mergetool.keepBackup false
git config --global mergetool.meld.path "C:\Program Files (x86)\Meld\Meld.exe"
Using
.gitconfig
configuration file located at
C:\Users\Username\.gitconfig
[merge]
	tool = meld
[mergetool]
	prompt = false
	keepBackup = false
[mergetool "meld"]
	path = C:\\Program Files (x86)\\Meld\\Meld.exe
by Valeri Tandilashvili
4 years ago
0
Git
Git/Github Tutorial
1
Opens up the default mergetool (for resolving conflicts)
git mergetool
by Valeri Tandilashvili
4 years ago
0
Git
Git/Github Tutorial
1
Lists all of our configuration values
git config --list
by Valeri Tandilashvili
4 years ago
0
Git
Git Tutorials
1
Opens up a web page with documentation of the command for help (in this case for
add
command
git help add  /  git add --help
by Valeri Tandilashvili
4 years ago
0
Git
Git Tutorials
1
Lists all the files and folders inside the directory
does not work on windows
by Valeri Tandilashvili
4 years ago
0
Git
Git Tutorials
1
If we want to see which files will be deleted we can use the
-n
option before running the command
git clean -n  /  git clean -fX -n  /  git clean -fx -n
Deletes untracked files that are not staged
git clean -f
Deletes ignored files only
git clean -f -X  /  git clean -fX
Deletes ignored and non-ignored (untracked files that are not staged) files
git clean -f -x  /  git clean -fx
by Valeri Tandilashvili
4 years ago
0
Git
1
remove file / all files from staging area
Remove all files from staging area
git reset  /  git reset HEAD  /  git reset HEAD .  /  git restore --staged .
Remove
index.html
from staging area
git reset index.html  /  git reset HEAD index.html /  git restore --staged index.html
by Valeri Tandilashvili
4 years ago
0
Git
1
Results: 1580