Skip to content

Commit 4494efd

Browse files
It is quite short guided setup for New developers.
1 parent ed0f42b commit 4494efd

File tree

1 file changed

+58
-0
lines changed

1 file changed

+58
-0
lines changed

README.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,61 @@ Daily goals app. An app that reminds you of your daily goals set. It will showca
99
to store performance.
1010
The app will be like an assistant which will guide you throughout your life.
1111
It will manage your day. It will manage how you spend your time. It will manage your relations and connections. Eg. It will give you optimized suggestions to spend that time effectively by considering how you spend your time, the app will build your schedule and will tell you accordingly. The app will use machine learning.
12+
13+
14+
### Introduction
15+
16+
This application is a collaborative project made by the Google Udacity Android Basics Scholars.
17+
18+
### How to Setup
19+
20+
- Head over to the [Base Repository](https://github.com/UdacityAndroidBasicsScholarship/daily-goals) and Fork it.
21+
22+
23+
#### Using Android Studio
24+
25+
- Copy the URL of your Fork & Clone it in Android Studio.
26+
27+
- Start Coding and Make Changes.
28+
29+
- Once done, push the changes to your fork.
30+
31+
32+
#### Using CLI
33+
34+
- Clone your fork.
35+
```
36+
git clone https://github.com/<your_github_username>/daily-goals
37+
```
38+
39+
- Change current working directory.
40+
```
41+
cd daily-goals
42+
```
43+
44+
- Start Coding and Make Changes.
45+
46+
- Add individual modified file to Staging area and write Commit Message for it.
47+
```
48+
git add File1
49+
git commit -m "Changed File1"
50+
51+
git add File2
52+
git commit -m "Changed File2"
53+
```
54+
55+
- Push changes to your Fork Repository.
56+
57+
### Submitting PR
58+
59+
- From your fork create a PR.
60+
61+
- Write a PR Title.
62+
63+
- In PR Description,
64+
65+
- Mention a short description of changes you've made.
66+
67+
- Or Attach a screenshot or gif of the same.
68+
69+
- Or Add your Slack ID (Display Name).

0 commit comments

Comments
 (0)