git push 반 자동화 프로그램 파이썬


git push 반 자동화 프로그램 파이썬

깃의 주소를 넣으면 자동으로 깃에 업데이트 해주는 프로그램을 파이썬을 이용해 만들었다. commit 을 할 때에는 날짜를 넣어서 커밋을 해주도록 만들었다. # GUI 반 자동 git 관리 프로그램 from math import * from tkinter import * from datetime import datetime import os placeholder_text = "push 할 위치를 입력하세요" class Cont1: def __init__(self, frame): self.inframe = Frame(frame) self.inframe.pack(fill=X, anchor=N) self.edt1 = Entry(self.inframe, width=70) self.edt1.insert(0, placeholder_text) self.edt1.pack(side=RIGHT, padx=5, pady=10) self.btn1 = Button(self.inframe, text='실행',...



원문링크 : git push 반 자동화 프로그램 파이썬