Le 06.07.20 à 14:49, Kelechi Precious Nwachukwu a écrit :
> H Claude, thanks for the guide. Is it okay if i cancel the pull request
> and start all over again?

Sure, it's possible, however seldom necessary.
It's generally better to squash your commits to flatten the unneeded
commit history. Typically run "git rebase -i HEAD~10" (for acting on the
last 10 commits, for example) and replace "pick" by "s" (or "squash")
for the commits you want to merge together.
Then force push your branch ("git push -f ...").

> I would love to do that, and also will
> appreciate help running the |flake8| tests.

Install flake8 in your Python environment (pip install flake8), then
simply run "flake8" on the command line, or pass a specific path
("flake8 django/conf") to limit the check to a part of the source code
(which is quicker).

> Thanks for your prompt
> response, i'm very open to learning please don't hold back on any
> correction. 

Great, there is always so much to learn... We all own a part of the big
puzzle, so sharing it makes the picture so much beautiful :-)

Claude

-- 
You received this message because you are subscribed to the Google Groups 
"Django internationalization and localization" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-i18n+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-i18n/96b50f96-ab20-3abb-7fff-cf8b560efe01%402xlibre.net.

Reply via email to