1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 08:59:45 +01:00

ant: add Hindi translation (#14342)

* Create ant.md

* Update pages.hi/common/ant.md

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* Update pages.hi/common/ant.md

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: debghs <145260557+debghs@users.noreply.github.com>
This commit is contained in:
Ayush 2024-10-24 21:17:12 +05:30 committed by GitHub
parent 75f5ad69bd
commit 9b7335be75
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

24
pages.hi/common/ant.md Normal file
View file

@ -0,0 +1,24 @@
# ant
> Apache Ant: जावा-आधारित प्रोजेक्ट बनाएं और प्रबंधित करें।
> अधिक जानकारी: <https://ant.apache.org>
- डिफ़ॉल्ट बिल्ड फ़ाइल के साथ एक प्रोजेक्ट बनाएं `build.xml`:
`ant`
- बिल्ड फ़ाइल के अलावा अन्य का उपयोग करके एक प्रोजेक्ट बनाएं `build.xml`:
`ant -f {{buildfile.xml}}`
- इस परियोजना के लिए संभावित लक्ष्यों पर जानकारी प्रिंट करें:
`ant -p`
- डिबगिंग जानकारी प्रिंट करें:
`ant -d`
- उन सभी लक्ष्यों को निष्पादित करें जो विफल लक्ष्य पर निर्भर नहीं हैं:
`ant -k`