라벨이 git인 게시물 표시

git autologin with vscode

  ## set git $ git config credential.helper store  

Setting up git auto-login in Visual Studio Code

   ## setting command git config --global credential.helper store  

git push with stored password

## set userid git config --global user.name 이름 git config --global user.email 이메일   ## set password git config credential.helper store  

git merge branch

## git checkout master (base) sungmin@sungminyunui-MacBookPro git % git checkout master Already on 'master' Your branch is up to date with 'origin/master'. (base) sungmin@sungminyunui-MacBookPro git % git merge v2 merge: v2 - not something we can merge Did you mean this? origin/v2 ## prepare oracle client (base) sungmin@sungminyunui-MacBookPro git % git merge --squash origin/v2 error: Merging is not possible because you have unmerged files. hint: Fix them up in the work tree, and then use 'git add/rm <file>' hint: as appropriate to mark resolution and make a commit. fatal: Exiting because of an unresolved conflict. (base) sungmin@sungminyunui-MacBookPro git % git push -f warning: redirecting to http://git.gnoti.com/gnoti/git.git/ Everything up-to-date (base) sungmin@sungminyunui-MacBookPro git % git merge --squash origin/v2 error: Merging is not possible because you have unmerged files. hint: Fix them up in the work t