You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**4.** Checkout from master to development branch.
80
+
81
+
```terminal
82
+
git checkout development
83
+
```
84
+
**5.** Make changes in source code.
85
+
86
+
**6.** Commit your changes.
87
+
88
+
```terminal
89
+
git add .
90
+
git commit -m "<your_commit_message>"
91
+
```
92
+
93
+
**7.** Push your local branch to the remote repository.
94
+
95
+
```terminal
96
+
git push -u origin development
97
+
```
98
+
99
+
**8.** Create a Pull Request!
100
+
101
+
**Congratulations!**:boom: Sit and relax, you've made your contribution to [Chatter App] (https://github.com/ishandeveloper/Chatter-App) project.
102
+
54
103
55
104
For help getting started with Flutter, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.
56
105
57
106
##### Made with ♥ by <ahref="https://github.com/ishandeveloper">ishandeveloper</a>
0 commit comments