반응형 IDE/GIT6 git사용시 덮어씌우기 git 사용시 파일을 리파지토리기준으로 덮어씌우고 싶을 때 아래와 같이 실행 git fetch --all git reset --hard origin/main git pull 2022. 3. 18. github에 contribute 하기 Fork it Create your feature branch (git checkout -b my-new-feature) Commit your changes (git commit -am 'Add some feature') Push to the branch (git push origin my-new-feature) Create new Pull Request 2019. 9. 4. jira 설치하기 1. 지라 데이터 공간 만들기 sudo mkdir -p /data/jira 2. 지라설치 docker run --name jira -itd --restart always -u root \ --env 'JVM_MAXIMUM_MEMORY=2G' \ -p 18080:8080 \ --volume /data/jira:/var/atlassian/jira \ cptactionhank/atlassian-jira-software 3. 접속주소 지라 서버 접속 주소:18080 (localhost:18080) 4. 혹시 에러나면 지라 권한주기 docker exec -u root -it jira bash chown -R 2:2 /var/atlassian/jira/ exit 5.지라 접속 후 "직접설정하기클릭" 6.데이터베이스.. 2019. 1. 10. github 폴더 커밋 rohyr@rohyr-PC MINGW64 ~ (master)$ cd C:/Users/rohyr/git/image rohyr@rohyr-PC MINGW64 ~/git/image (master)$ git initInitialized empty Git repository in C:/Users/rohyr/git/image/.git/ rohyr@rohyr-PC MINGW64 ~/git/image (master)$ git add . rohyr@rohyr-PC MINGW64 ~/git/image (master)$ git remote add originusage: git remote add [] -f, --fetch fetch the remote branches --tags import all tags and asso.. 2017. 7. 26. 이전 1 2 다음 반응형