Hi I'm a python/django beginner , I watched many tutorial videos, the way you taught and demonstrated it's easy to understand, thank you so much for making those valuable tutorial, it really helps me alot.
I'm getting prompted for a username/password when I do "git push origin main". which doesn't let me copy/paste for some reason. Do you need to generate a developer token? Seems this video is out of date.
hey, how do I know what are the files need to be added in the .gitignore file in a Django project? can you explain it a bit more or provide me a resource so that I can learn about it more extensively.
Assalamoe 'alaikoem wa rahmatullahi wa barakatuh brother, The .gitignore file is a list of files and folders that you want Git to ignore. This means that when you make changes to your code and commit those changes, Git won't track or include the files listed in the .gitignore file. Some examples of things you might want to ignore are: Compiled files (e.g. .o, .class, .pyc) Temporary files (e.g. .log, .bak, .tmp) IDE-specific files (e.g. .idea/, .vscode/) Configuration files with secrets (e.g. .env, .config, *.key) Generated documentation (e.g. doc/, target/doc/) Dependency and vendor directories (e.g. node_modules/, vendor/) By ignoring these files, your repository will be smaller and easier to manage.
Hi I'm a python/django beginner , I watched many tutorial videos, the way you taught and demonstrated it's easy to understand, thank you so much for making those valuable tutorial, it really helps me alot.
you are the best!
full explanation.
thank you. I learned Git. GG = GIT GUD.
Thanks you again! This tutorial is really valuable!. ♥!
I'm getting prompted for a username/password when I do "git push origin main". which doesn't let me copy/paste for some reason. Do you need to generate a developer token? Seems this video is out of date.
In Terminal, how do you go to the new line without executing the code? see 27:17
i think he pressed ctrl + c but didn't show the output ^C or something like that
hey, how do I know what are the files need to be added in the .gitignore file in a Django project? can you explain it a bit more or provide me a resource so that I can learn about it more extensively.
Assalamoe 'alaikoem wa rahmatullahi wa barakatuh brother, The .gitignore file is a list of files and folders that you want Git to ignore. This means that when you make changes to your code and commit those changes, Git won't track or include the files listed in the .gitignore file.
Some examples of things you might want to ignore are:
Compiled files (e.g. .o, .class, .pyc)
Temporary files (e.g. .log, .bak, .tmp)
IDE-specific files (e.g. .idea/, .vscode/)
Configuration files with secrets (e.g. .env, .config, *.key)
Generated documentation (e.g. doc/, target/doc/)
Dependency and vendor directories (e.g. node_modules/, vendor/)
By ignoring these files, your repository will be smaller and easier to manage.
@@SalahedineA Wa 'alaikumus salam brother. Jazakumullahu ahsanal jaza ❤
15:29 how you went to next line.
i got (src refspec main does not match any) error whats the matter???
You need to commit first with \
git commit -m "Initial commit" and then you can git push origin main