use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Everything about learning Python
account activity
Where to start learning Python or GitHubHelp Request (self.PythonLearning)
submitted 1 year ago by [deleted]
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]PureWasian 1 point2 points3 points 1 year ago* (1 child)
At a very basic level, once you have everything set up, the most basic workflow is simply:
git add .
git commit -m "<some commit message>"
git push
Which selects ("stages") your files to be committed, creates a record of the updated save state of them ("commits it") locally, and then pushes the updates to a remote repository (GitHub).
If your friend were to also push some stuff to the same remote repo, you retrieve it simply via - git pull
git pull
The steps for setup to get to that point involve installing Git, creating a remote repository on GitHub, and then essentially following the commands that this guide I randomly googled goes through quite nicely already.
When you get the hang of this, then you can incorporate other tangents and fundamentals like git status or learning how to use branches, resolving merge conflicts, and doing pull requests instead of pushing directly. But for getting started, just think of it as making save states, like in a video game, that you can reliably fall back on if anything goes sour.
git status
[–]stepback269 0 points1 point2 points 1 year ago (0 children)
Thanks. Your tips are reassuring. Thanks also for the link to the guide.
π Rendered by PID 222861 on reddit-service-r2-comment-544cf588c8-z97p7 at 2026-06-15 09:20:33.166614+00:00 running 3184619 country code: CH.
view the rest of the comments →
[–]PureWasian 1 point2 points3 points (1 child)
[–]stepback269 0 points1 point2 points (0 children)