Good ideas and conversation. No ads, no tracking. Login or Take a Tour!
user-inactivated · 4315 days ago · link · · parent · post: When should I make the first commit to source control?
git commit -m "initial commit"
:wq #!/usr/bin/env python
import sys
def main():
sys.exit()
if __name__ == "__main__":
main()