Your first git commit and push to GitHub using Flutter in Android Studio

Поделиться
HTML-код
  • Опубликовано: 27 ноя 2024

Комментарии • 36

  • @AppLeverCEO
    @AppLeverCEO Год назад +2

    Awesome and simple explanation. I shared this with my team to go through this video and implement. Thanks for your work.

  • @niko-mp4
    @niko-mp4 11 месяцев назад

    damm so happy to find a good explanation on the first try :)

  • @roshanbarkane2705
    @roshanbarkane2705 Год назад +1

    Sir your awesome way explain this topic 😍😊

  • @saonsikder4622
    @saonsikder4622 Год назад +1

    Really nice explanation ❤

  • @bushraw66
    @bushraw66 11 месяцев назад +1

    Thank you so much

  • @furkan6883
    @furkan6883 4 месяца назад +1

    thank you 😄

  • @professionalnadir5879
    @professionalnadir5879 11 месяцев назад +1

    thanx

  • @aditipal3271
    @aditipal3271 Год назад

    Thank you so much its help me lots

  • @wonderwithlali6020
    @wonderwithlali6020 9 месяцев назад

    Anytime I push my codes, a dialog box appears and when I login it directs me to jetbrains website asking authorization to my github. Am I suppose to allow it?

    • @PaulGestwicki
      @PaulGestwicki  9 месяцев назад

      Yes, if you're using GitHub credentials through the IDE, there will be a little negotiation required through the browser. That's normal, but as always, be sure to check the URLs to make sure they're going where you expect.

    • @wonderwithlali6020
      @wonderwithlali6020 9 месяцев назад +1

      @@PaulGestwicki Alright. Thank you

  • @funnymoment9164
    @funnymoment9164 7 месяцев назад

    Thanks!

  • @vankoofficial123
    @vankoofficial123 Год назад

    Wow great🙏

  • @bahaaaldeenkrayem7231
    @bahaaaldeenkrayem7231 Год назад

    When adding files, all files are added to the Changes list. The number of files exceeds 200 files and more. What is my problem? It's my first time using Git.😢

    • @PaulGestwicki
      @PaulGestwicki  Год назад

      It could be a problem with your .gitignore file, but the truth is that it's very hard to diagnose something like that in the comments section.

    • @bahaaaldeenkrayem7231
      @bahaaaldeenkrayem7231 Год назад

      @@PaulGestwicki
      Can you give me some advice to try to solve the problem? Where can I start searching?

    • @PaulGestwicki
      @PaulGestwicki  Год назад +1

      @@bahaaaldeenkrayem7231 check to make sure you don't accidentally have a repository inside of a repository. This is a mistake I often see students make, where they start a project in one folder, move things around, try something else, and end up with the repository folder inside of another one. The repository is held in a .git directory. Make sure you don't have any of these in the directories above your project.
      Aside from that, make sure that you have the right .gitignore file. The default one that you get when creating a project in Android Studio should be correct if you're using a conventional project layout.
      Also, minimize the number of platforms you're generating code for. If you are only building for Android, only, include the Android platform. Otherwise you will be generating and pushing a lot of code you don't need.

  • @anirudhhegde9378
    @anirudhhegde9378 Год назад

    when I look at Github repository, its showing C++ as Github repository language

    • @PaulGestwicki
      @PaulGestwicki  Год назад +1

      If you upload all the files needed to create the native builds, they will easily outweigh the dart files. For example, if you have a very simple dart application, but include the files needed to build it for Linux, there are more of those C++ files than there are Dart files, so GitHub calls it a "C++" project.

    • @anirudhhegde9378
      @anirudhhegde9378 Год назад +1

      @@PaulGestwicki ya thank you

  • @iswarrand.sivaraj6262
    @iswarrand.sivaraj6262 8 месяцев назад

    i dont find the web option in the new version android studio

    • @PaulGestwicki
      @PaulGestwicki  8 месяцев назад +1

      I haven't been using Flutter in a while, but I just updated my installation of it and Android Studio to check this out. I still see the web option, so I am not sure what you're encountering. I hope you'll post a reply if you figure it out, in case anyone else comes across it.

    • @iswarrand.sivaraj6262
      @iswarrand.sivaraj6262 8 месяцев назад

      @PaulGestwicki hi I figure it after I look properly and found it

  • @abhijithnv3459
    @abhijithnv3459 Год назад

    sir, how to run this code from the repository itself

    • @PaulGestwicki
      @PaulGestwicki  Год назад

      The repository is just for storing data; you don't run code directly in a repository. You can deploy the code somewhere else, such as GitHub Pages. I have an example of this over here, but it may not be quite what you're asking. ruclips.net/video/OREQ9X1SdAw/видео.html

  • @ibrarahmad484
    @ibrarahmad484 Год назад +1

    Thank you