웹개발/깃허브
윈도우에서 cURL 써서 Git API 사용하기
수제개발자
2019. 4. 16. 14:34
1. CMD
2. Git Bash
1 CMD
깃 api이용해서 curl 명령어로 원격 저장소의 내용을 수정하는 명령을 수행했다.
성공하면 커밋결과 제이슨을 리턴한다

curl 명령어는 아래 링크 참고했는데 리눅스 명령어라서 윈도우랑 다르다.
https://gist.github.com/aborruso/40aee4f1738c0a0e3727bf7cbec91152
#!/bin/bash
cartella="/var/myfolder"
# update the file
curl -i -X PUT -H 'Authorization: token 4d013330xxxxxxxxxxxxxx' -d "{\"path\": \"mattei.csv\", \
\"message\": \"update\", \"content\": \"$(openssl base64 -A -in $cartella/mattei.csv)\", \"branch\": \"master\",\
\"sha\": $(curl -X GET https://api.github.com/repos/username/repo/contents/mattei.csv | jq .sha)}" \
https://api.github.com/repos/username/repo/contents/mattei.csv
특히 윈도우 cmd에서는 문제점이 curl 명령어 안에 또 다시 curl 명령어를 어떻게 써야할지 모르겠다.
위 링크에서는 curl ~ $(curl ~) ~
이런 구조로 되어있는데 cmd에서는 $자체가 유효하지 않다.
그래서 git bash를 실행했다.
2. git Bash

위 명령어를 보면 jq라는 부분이 있는데 jq라는 JSON Parser를 설치해야 이용가능한 명령어이다.
jq와 안긴 curl 명령어를 통해 curl 내부에서 필요한 값을 삽입해줄수있다.
git Bash에서는 리눅스식 명령어 그대로 사용하면 된다. curl 안긴 명령어는
curl ~ $(curl ~) ~ 구조로 사용한다.