We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[x]
There are multiple problems whereby options have been added to git commands which are unavailable in early git versions.
git remote remove
rm
git config --local
config
git commit-tree -m
git check-attr --cached
git fetch
git pull
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Uh oh!
There was an error while loading. Please reload this page.
[x]
):Description
There are multiple problems whereby options have been added to git commands which are unavailable in early git versions.
git remote remove
. This is not available in git < 1.8.0 -rm
is an alias for it.git config --local
. This is not available in git < 1.8.0 -config
is an appropriate alias.git commit-tree -m
. This is not available in git < 1.8.0 - the message can simply be passed in as a stdin.git check-attr --cached
. This is not available in git < 1.8.0. It will use the cached version in any case in 1.7 and this option is not used.git fetch
andgit pull
do not behave the same way in git < 2.0.0 to the way expected in merge.go.The text was updated successfully, but these errors were encountered: