Hey Guys,
Im pretty new to git and i was wondering if someone could share their workflow with me, git ignores, how they work, stuff like that
Thanks
Hey Guys,
Im pretty new to git and i was wondering if someone could share their workflow with me, git ignores, how they work, stuff like that
Thanks
you can include folder/files name inside .gitignore which you dont want to upload on to git.(by default some folders are there in gitignore which a not suggested to be uploaded to github)
for example generally node_modules(plugins, typings etc) never get uploaded on git. Now if you check .gitignore you will find these names .
if you want to upload these in git just remove the files name from the git ignore.
git works same for ionic like it works for other projects.
you can see these two simple and amazing tutorials for understanding git.
http://rogerdudler.github.io/git-guide/