본문 바로가기
728x90
728x90

IDE12

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.
git 기초 퍼옴 git - 간편 안내서git을 시작하기 위한 간편 안내서. 어렵지 않아요 ;)Roger Dudler가 만들었어요. (@tfnico, @fhd와 Namics의 도움을 받았지요.) 번역은 Juntai Park과 Ardie Hwang이 담당했습니다. 문제 보고는 여기(github)로 해주세요! 다른 언어판도 읽어보세요! English, Deutsch, Español, Français, indonesian, Italiano, 日本語, မြန်မာ, Nederlands, polski, Português, Русский, Türkçe, 中文 설치OS X용 git 다운로드Windows용 git 다운로드Linux용 git 다운로드새로운 저장소 만들기폴더를 하나 만들고, 그 안에서 아래 명령을 실행하세요. git ini.. 2017. 7. 20.
https://stackoverflow.com/questions/18588974/git-prevents-pushing-after-amending-a-commit git reset --mixed origin/master git add .git add -f * 에러 [rejected] master -> master (fetch first) git push origin master --forceup vote6down votetry:git fetch origin master git merge origin master After to wrote this code I received other error: (non-fast-forward)I write this code:git fetch origin master:tmp git rebase tmp git push origin HEAD:master git branch -D tmp And resolved my problem ro.. 2017. 7. 19.
728x90
728x90