250x250
Notice
Recent Posts
Recent Comments
Link
목록백엔드 로드맵따라가기 (53)
전성빈의 사리사욕
[CSS 문제] /POST page 조정
post page에서 input에 margin을 넣어 깔끔한 화면을 만들려고 한다. 하지만 CSS selector가 많고 서로 건들여놓는게 많아서 코드를 추가해도 변하지 않는다. #main #display div{ margin:15px; } ---------------------------- 일단 form에 id='post'를 통해 적용시켰다. 디자인은 나중에 천천히 다루자. #post div{margin:15px;}
백엔드 로드맵따라가기/myServer
2020. 7. 28. 14:34
[ERROR LOG] git : src refspec Branch_Name does not match any , failed to push some refs to 'Path'
git에서 Branch로 push를 하려는 상황에서 push가 되지 않는 문제가 발생했다. command: git push origin Branch_Name result: error: src refspec Branch_Name does not match any error: failed to push some refs to 'Path' solution: 위와 같은 에러가 뜨는 여러가지 이유가 있는데 그 중 2가지를 찾아보았다. 1.나의 repository에서 commit할 내용이 없는것. 2.local repository와 remote repository가 다른것. 이 중 나는 2번의 경우에 해당되었다. github에서 test 라는 이름의 branch를 생성 하여 git에서 push 하려 했지만 loca..
백엔드 로드맵따라가기/버전 관리
2020. 7. 28. 00:05