Linux Ask!

Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.

Jul 252011
 

List all git config options

Answer:

To show the current git global options, you can use the command "git config --list"

# git config --list

user.name=John Doe
[email protected]
color.diff=auto
color.status=auto
color.branch=auto
color.interactive=auto
color.ui=true
color.pager=true
..
Jul 112011
 

Remove added files using svn add

Answer:

To remove files from committed into the SVN in the next commit if you have just added them using the svn add, you should use svn revert

e.g.

# svn revert file.txt