Upload flutter project to gitHub

  •  git --version  this is for check version of git
  • git config --global user.name "yourGit username"  here you need to insert your git username
  • git config --global user.email "yourGit email"  here you need to insert your git email address
  • git init
  • git add . 
  • git commit -m "my commit title"
  • git remote add origin gitRepositoryLink
  • git push -u origin master



---------------------------------------------------------------------------------------------------------------
2nd commit
---------------------------------------------------------------------------------------------------------------
  • git status
  • git add .
  • git commit -m "your commit title"
  • git push







Comments

Popular posts from this blog

TensorFlow Train/test /evaluation flow

AttributeError : module 'tensorflow' has no attribute 'global_variables_initializer'

AttributeError: module 'tensorflow_estimator.python.estimator.api._v2.estimator' has no attribute 'inputs'