a thoughtful web.
Good ideas and conversation. No ads, no tracking.   Login or Take a Tour!
comment
user-inactivated  ·  4315 days ago  ·  link  ·    ·  parent  ·  post: When should I make the first commit to source control?

  #!/usr/bin/env python
  import sys
  
  def main():
    sys.exit()
  
  if __name__ == "__main__":
    main()
:wq

git commit -m "initial commit"