Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.18 KB | None | 0 0
  1. $ git branch
  2. C:Program FilesDeltaresDelft3D 4.03.01win64utilbinmore.exe: C:Program: command not found
  3.  
  4. $ set |grep -F GIT
  5. GIT_EXEC_PATH='C:/Program Files/Git/mingw64/libexec/git-core'
  6. PWD=/d/Workspace/GITtest
  7. if [ -n "${GIT_DIR-}" ]; then
  8. test -d "${GIT_DIR-}" && __git_repo_path="$GIT_DIR";
  9. if test -n "$GIT_TESTING_PORCELAIN_COMMAND_LIST"; then
  10. __gitcomp "$GIT_TESTING_PORCELAIN_COMMAND_LIST";
  11. if [ "true" = "$inside_worktree" ] && [ -n "${GIT_PS1_HIDE_IF_PWD_IGNORED-}" ] && [ "$(git config --bool bash.hideIfPwdIgnored)" != "false" ] && git check-ignore -q .; then
  12. case "${GIT_PS1_DESCRIBE_STYLE-}" in
  13. b="GIT_DIR!";
  14. if [ -n "${GIT_PS1_SHOWDIRTYSTATE-}" ] && [ "$(git config --bool bash.showDirtyState)" != "false" ]; then
  15. if [ -n "${GIT_PS1_SHOWSTASHSTATE-}" ] && git rev-parse --verify --quiet refs/stash > /dev/null; then
  16. if [ -n "${GIT_PS1_SHOWUNTRACKEDFILES-}" ] && [ "$(git config --bool bash.showUntrackedFiles)" != "false" ] && git ls-files --others --exclude-standard --directory --no-empty-directory --error-unmatch -- ':/*' > /dev/null 2> /dev/null; then
  17. if [ -n "${GIT_PS1_SHOWUPSTREAM-}" ]; then
  18. local z="${GIT_PS1_STATESEPARATOR-" "}";
  19. if [ $pcmode = yes ] && [ -n "${GIT_PS1_SHOWCOLORHINTS-}" ]; then
  20. GIT_PS1_SHOWUPSTREAM="$value";
  21. if [[ -z "${GIT_PS1_SHOWUPSTREAM}" ]]; then
  22. for option in ${GIT_PS1_SHOWUPSTREAM};
  23. upstream=${GIT_SVN_ID:-git-svn};
  24. if [ "$GIT_COMPLETION_CHECKOUT_NO_GUESS" = "1" ] || [ -n "$(__git_find_on_cmdline "$flags")" ]; then
  25. if test -n "$GIT_TESTING_ALL_COMMAND_LIST"; then
  26. __gitcomp "$GIT_TESTING_ALL_COMMAND_LIST $(__git --list-cmds=alias,list-guide) gitk";
  27.  
  28. $ cat ~/.gitconfig
  29. [user]
  30. name = QB-LAPTOP
  31. email = AAAA@gmail.com
  32. [gui]
  33. recentrepo = D:/New
  34. [filter "lfs"]
  35. clean = git-lfs clean -- %f
  36. smudge = git-lfs smudge -- %f
  37. process = git-lfs filter-process
  38. required = true
  39.  
  40. $ command -V git
  41. git is hashed (/mingw64/bin/git)
  42.  
  43. $ git --version
  44. git version 2.22.0.windows.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement